home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 60 / IOPROG_60.ISO / soft / c++ / gsl-1.1.1-setup.exe / {app} / src / cblas / ctbsv.c < prev    next >
Encoding:
C/C++ Source or Header  |  2002-04-18  |  409 b   |  17 lines

  1. #include <gsl/gsl_math.h>
  2. #include <gsl/gsl_cblas.h>
  3. #include "cblas.h"
  4.  
  5. #include "hypot.c"
  6.  
  7. void
  8. cblas_ctbsv (const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo,
  9.          const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag,
  10.          const int N, const int K, const void *A, const int lda, void *X,
  11.          const int incX)
  12. {
  13. #define BASE float
  14. #include "source_tbsv_c.h"
  15. #undef BASE
  16. }
  17.